Quiz: AsyncTask
Which methods are run on the main UI thread? You can read the JavaDoc on AsyncTask to refresh your memory.
execute()
onPreExecute()
doInBackground()
publishProgress()
onProgressUpdate()
onPostExecute()
Next Concept